home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000456_news@columbia.edu_Sun Oct 1 10:24:01 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA24445
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 1 Oct 1995 18:47:48 -0400
  3. Received: by apakabar.cc.columbia.edu id AA11903
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 1 Oct 1995 18:47:46 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!elroy.jpl.nasa.gov!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Kermit Push Command
  9. Message-Id: <1995Oct1.162401.62433@cc.usu.edu>
  10. Date: 1 Oct 95 16:24:01 MDT
  11. References: <Pine.OSF.3.91.950930132944.29387A-100000-100000-100000@io.UWinnipeg.ca>
  12. Organization: Utah State University
  13. Lines: 38
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Pine.OSF.3.91.950930132944.29387A-100000-100000-100000@io.UWinnipeg.ca>, Jim Clark <clark@UWinnipeg.ca> writes:
  17. > Hi
  18. > Several months ago I asked about how to get Kermit to push back to the
  19. > shell from which Kermit was called, rather than pushing to Dos.  Shell was
  20. > Wordperfect Office and solutions I received were specific to that shell. 
  21. > Is there any more general solution on the Kermit side; that is, can I
  22. > control in anyway within Kermit or in calling Kermit whether Push starts a
  23. > new command process or returns to the calling process?  Seems to me that
  24. > most people would want to return to calling shell rather than start a new
  25. > process (e.g., to switch back and forth between Kermit and other
  26. > programs).  For example, that is what <Alt><F4> does in Procomm. 
  27.  
  28.     When Kermit "shells to DOS" it invokes the currently identified
  29. command processor, named in DOS Environment line SHELL=. If the line does 
  30. not exist (as is the default on DOS machines) it uses the COMSPEC= 
  31. Environment line. The latter is normally COMSPEC=c:\dos\command.com. 
  32.     Please see release doc file kermit.bwr, and search on occurences of
  33. keyword SHELL. 
  34.     Kermit has no way of knowing how it got invoked. Since DOS is not a 
  35. multitasking o/s, as we all know, Kermit's only choice is to invoke that 
  36. command processor in such a way that Kermit regains control when the
  37. processor and its successors complete. The SHELL= line gives the user
  38. control of which command process will be invoked as Kermit "shells" to it.
  39.     Joe D.
  40.  
  41. > Thanks
  42. > Jim
  43. > ****************************************************************************
  44. > James M. Clark                       (204) 786-9313
  45. > Department of Psychology             (204) 786-1824 Fax
  46. > University of Winnipeg               clark@uwinnipeg.ca
  47. > Winnipeg, Manitoba  R3B 2E9          4L02A
  48. > CANADA
  49. > ****************************************************************************